home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
3D Game Programming All in One
/
3D Game Programming All in One Disc.iso
/
3D2E
/
RESOURCES
/
CH2
/
HelloWorld.cs
< prev
next >
Wrap
Text File
|
2006-05-29
|
463b
|
14 lines
// ========================================================================
// HelloWorld.cs
//
// This module is a program that echos a simple greeting on the screen.
//
// ========================================================================
function runHelloWorld()
// ----------------------------------------------------
// Entry point for the program.
// ----------------------------------------------------
{
echo("Hello World");
}